home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.2 Development Libraries / SGI IRIX 6.2 Development Libraries.iso / dist / complib.idb / usr / share / catman / p_man / cat3 / complib / zlargv.z / zlargv
Text File  |  1996-03-14  |  2KB  |  67 lines

  1.  
  2.  
  3.  
  4. ZZZZLLLLAAAARRRRGGGGVVVV((((3333FFFF))))                                                          ZZZZLLLLAAAARRRRGGGGVVVV((((3333FFFF))))
  5.  
  6.  
  7.  
  8. NNNNAAAAMMMMEEEE
  9.      ZLARGV - generate a vector of complex plane rotations with real cosines,
  10.      determined by elements of the complex vectors x and y
  11.  
  12. SSSSYYYYNNNNOOOOPPPPSSSSIIIISSSS
  13.      SUBROUTINE ZLARGV( N, X, INCX, Y, INCY, C, INCC )
  14.  
  15.          INTEGER        INCC, INCX, INCY, N
  16.  
  17.          DOUBLE         PRECISION C( * )
  18.  
  19.          COMPLEX*16     X( * ), Y( * )
  20.  
  21. PPPPUUUURRRRPPPPOOOOSSSSEEEE
  22.      ZLARGV generates a vector of complex plane rotations with real cosines,
  23.      determined by elements of the complex vectors x and y.  For i = 1,2,...,n
  24.  
  25.         (        c(i)   s(i) ) ( x(i) ) = ( a(i) )
  26.         ( -conjg(s(i))  c(i) ) ( y(i) ) = (   0  )
  27.  
  28.  
  29. AAAARRRRGGGGUUUUMMMMEEEENNNNTTTTSSSS
  30.      N       (input) INTEGER
  31.              The number of plane rotations to be generated.
  32.  
  33.      X       (input/output) COMPLEX*16 array, dimension (1+(N-1)*INCX)
  34.              On entry, the vector x.  On exit, x(i) is overwritten by a(i),
  35.              for i = 1,...,n.
  36.  
  37.      INCX    (input) INTEGER
  38.              The increment between elements of X. INCX > 0.
  39.  
  40.      Y       (input/output) COMPLEX*16 array, dimension (1+(N-1)*INCY)
  41.              On entry, the vector y.  On exit, the sines of the plane
  42.              rotations.
  43.  
  44.      INCY    (input) INTEGER
  45.              The increment between elements of Y. INCY > 0.
  46.  
  47.      C       (output) DOUBLE PRECISION array, dimension (1+(N-1)*INCC)
  48.              The cosines of the plane rotations.
  49.  
  50.      INCC    (input) INTEGER
  51.              The increment between elements of C. INCC > 0.
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.                                                                         PPPPaaaaggggeeee 1111
  64.  
  65.  
  66.  
  67.